home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1995 December / Computer Life December 1995.iso / tapcis / makedoc.bat < prev    next >
DOS Batch File  |  1995-08-13  |  2KB  |  48 lines

  1. REM MAKEDOC.BAT -- Version 1.10  August 11, 1995
  2. @ECHO OFF
  3. CLS
  4. IF "%1"=="DEL" GOTO DEL
  5. IF "%1"=="del" GOTO DEL
  6. IF "%1"=="Del" GOTO DEL
  7. ECHO This batch file will make ONE file called TAPCIS6.DOC out
  8. ECHO of all the separate docs. You can then use the command
  9. ECHO MAKEDOC DEL to delete the individual documentation files.
  10. ECHO ...
  11. ECHO To combine the files now, press [Enter]. To leave them as
  12. ECHO individual files, press [Ctrl+C] and answer "Y".
  13. ECHO ...
  14. pause
  15. COPY TITLE.DOC+QKSTART.DOC+OVERVIEW.DOC+MAINMENU.DOC+READING.DOC  TAPCIS6.DOC
  16. COPY TAPCIS6.DOC+MARKING.DOC+WRITING.DOC+LIBRARY.DOC+OTHER.DOC    TAPCIS6.DOC
  17. COPY TAPCIS6.DOC+CONNECT.DOC+SETUP.DOC+INDEX.DOC                  TAPCIS6.DOC
  18. CLS
  19. ECHO You can now print TAPCIS6.DOC. To delete the individual files,
  20. ECHO use the command MAKEDOC DEL from DOS.
  21. GOTO Done
  22.  
  23. :DEL
  24. ECHO This command will delete the individual TAPCIS6 documentation files.
  25. ECHO If you did not wish to do this, press [Ctrl+C] now. To confirm the
  26. ECHO deletion of these DOC files, press [Enter].
  27. ECHO ...
  28. PAUSE
  29. DEL TITLE.DOC    
  30. DEL QKSTART.DOC  
  31. DEL OVERVIEW.DOC 
  32. DEL MAINMENU.DOC 
  33. DEL READING.DOC  
  34. DEL MARKING.DOC  
  35. DEL WRITING.DOC  
  36. DEL LIBRARY.DOC  
  37. DEL OTHER.DOC    
  38. DEL CONNECT.DOC  
  39. DEL SETUP.DOC    
  40. DEL INDEX.DOC    
  41. CLS
  42. ECHO The individual TAPCIS6 documentation files have been deleted. You
  43. ECHO may DEL MAKEDOC.BAT to complete the clean-up. The TAPCIS6.DOC file,
  44. ECHO if it exists, was not deleted.
  45. GOTO DONE
  46.  
  47. :Done
  48.